package org.adoxx.all2abl.service.webservice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse für convertALL2ABL complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="convertALL2ABL">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fileDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ALLFile" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="ALLFileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "convertALL2ABL", propOrder = { "fileDescription", "version", "allFile", "allFileName" }) public class ConvertALL2ABL { protected String fileDescription; protected String version; @XmlElement(name = "ALLFile") protected byte[] allFile; @XmlElement(name = "ALLFileName") protected String allFileName; /** * Ruft den Wert der fileDescription-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFileDescription() { return fileDescription; } /** * Legt den Wert der fileDescription-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFileDescription(String value) { this.fileDescription = value; } /** * Ruft den Wert der version-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Legt den Wert der version-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Ruft den Wert der allFile-Eigenschaft ab. * * @return * possible object is * byte[] */ public byte[] getALLFile() { return allFile; } /** * Legt den Wert der allFile-Eigenschaft fest. * * @param value * allowed object is * byte[] */ public void setALLFile(byte[] value) { this.allFile = value; } /** * Ruft den Wert der allFileName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getALLFileName() { return allFileName; } /** * Legt den Wert der allFileName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setALLFileName(String value) { this.allFileName = value; } }